home *** CD-ROM | disk | FTP | other *** search
- property patchList, patchPath
-
- on birth me
- set patchPath to the pathName & the movieName
- set patchList to value(field "patches")
- if not listp(patchList) then
- alert("Sorry, this patch file seems to be corrupt")
- return #badPatch
- else
- put "<i> cPatchManager: my patchPath = " & patchPath
- put "<i> cPatchManager: patchList = " & patchList
- end if
- return me
- end
-
- on patchMe me, targetMovie
- put "<i> oPatchManger:target movie = " & targetMovie
- set iDelim to the itemDelimiter
- set the itemDelimiter to "."
- set targetMovie to item 1 of targetMovie
- set the itemDelimiter to iDelim
- put "<i> root-name of targetMovie = " & targetMovie
- if voidp(getaProp(patchList, targetMovie)) then
- put "<i> no patches listed for this movie"
- else
- set lsTargetPatches to getProp(patchList, targetMovie)
- put "<i> I've found patches for this movie:"
- put lsTargetPatches
- set the visible of window patchPath to 0
- put "<i> current windows: " & the windowList
- if count(the windowList) = 0 then
- alert("Can't read patch file, possibly corrupted")
- exit
- end if
- put "<i> lsTargetPatches = " & lsTargetPatches
- repeat with thePatch in lsTargetPatches
- tell window patchPath
- copyToClipBoard(cast getAt(thePatch, 1))
- end tell
- tell the stage
- pasteClipBoardInto(cast getAt(thePatch, 2))
- end tell
- end repeat
- put "<i> patchMgr: That oughta do it.."
- put "<i> windowlist = " & the windowList
- end if
- end
-
- on closePatchFile me
- forget(window patchPath)
- put "<i> final windowlist = " & the windowList
- end
-